Get Events Lowest Price
GET/catalogues/products/ticketing/events/lowest-price
Gets lowest price for specified events
Request
Query Parameters
productId string[]required
The Ids of the ticketing events to get lowest prices for
categoryId string
Sending a categoryId will limit the response to the specified category
Header Parameters
x-api-key stringrequired
The API key for the given store
Accept-Language string
Default value: en
Responses
- 200
- 401
The request has succeeded.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
prices object[]required
productId stringrequired
The id of the product
rate object
Rate Category Price Item
id stringrequired
The id of the rate
seatCategoryId stringrequired
The id of the seat category
price objectrequired
The price
minorUnits int32required
The amount of money, in it's ISO 4217 minor units (i.e. cents, pence, etc)
currencyCode stringrequired
The currency of the money value
precision int32required
The precision of the money value (i.e it's minor units conversion factor) based on IOS 4217
soldOut booleanrequired
True if sold out.
{
"prices": [
{
"productId": "string",
"rate": {
"id": "string",
"seatCategoryId": "string",
"price": {
"minorUnits": 0,
"currencyCode": "string",
"precision": 0
}
},
"soldOut": true
}
]
}
Access is unauthorized.
Loading...